home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / sigpause.c,v < prev    next >
Text File  |  1988-06-19  |  2KB  |  89 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.19.14.32.00;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/* 
  25.  * sigpause.c --
  26.  *
  27.  *    Procedure to map from Unix sigsetmask system call to Sprite.
  28.  *    Note: many Unix signals are not supported under Sprite.
  29.  *
  30.  * Copyright 1986 Regents of the University of California
  31.  * All rights reserved.
  32.  */
  33.  
  34. #ifndef lint
  35. static char rcsid[] = "$Header: sigpause.c,v 1.1 86/06/25 11:05:54 douglis Exp $ SPRITE (Berkeley)";
  36. #endif not lint
  37.  
  38. #include "sprite.h"
  39. #include "sig.h"
  40.  
  41. #include "compatInt.h"
  42. #include <signal.h>
  43. #include <errno.h>
  44.  
  45.  
  46. /*
  47.  *----------------------------------------------------------------------
  48.  *
  49.  * sigpause --
  50.  *
  51.  *    Procedure to map from Unix sigsetmask system call to Sprite 
  52.  *    Sig_SetHoldMask.
  53.  *
  54.  * Results:
  55.  *    UNIX_ERROR is returned upon error, with the actual error code
  56.  *    stored in errno.  Upon success, the previous signal mask is returned.
  57.  *
  58.  * Side effects:
  59.  *    The current signal mask is modified.
  60.  *
  61.  *----------------------------------------------------------------------
  62.  */
  63.  
  64. int
  65. sigpause(mask)
  66.     int mask;            /* new mask */
  67. {
  68.     int spriteMask = 0;        /* equivalent mask for Sprite */
  69.     ReturnStatus status;    /* generic result code */
  70.  
  71.     status = Compat_UnixSigMaskToSprite(mask,&spriteMask);
  72.     if (status == FAILURE) {
  73.     errno = EINVAL;
  74.     return( UNIX_ERROR);
  75.     }
  76.     status = Sig_Pause(spriteMask);
  77.     if (status != SUCCESS) {
  78.     errno = Compat_MapCode(status);
  79.     /*
  80.      * Does anyone check for -1 upon return or does it look like a mask?
  81.      */
  82.     return(UNIX_ERROR);    
  83.     } else {
  84.     errno = EINTR;
  85.     return(UNIX_ERROR);
  86.     }
  87. }
  88. @
  89.